Fetch, update, or delete a price capture by numeric ID.
HTTP: GET | PUT | DELETE /external-data/priceean/{id}
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| id | integer | yes | Identifier from the pricestest.priceean table. | 987654 |
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| datum | string | no | Primary capture timestamp. | 2025-09-26 10:30:00 |
| recrawled | string | no | Timestamp of the recrawl. | 2025-09-26 11:00:00 |
| domain | string | no | Owning domain. | example-shop.cz |
| domainbase | string | no | Normalized domain base. | example-shop.cz |
| tag | string | no | Tag supplied during capture. | retail |
| ean | string | no | EAN that uniquely identifies the product. | 8592331234567 |
| confidence | number | no | Match confidence score. | 0.97 |
| price | number | no | Detected price value. | 249.9 |
| price_full | number | no | Detected full price before discounts. | 279.9 |
| cur | string | no | ISO currency code. | CZK |
| url | string | no | Source URL. | https://example-shop.cz/product/123 |
| instock | string | no | Availability flag. | in_stock |
| partnerid | string | no | Upstream partner identifier. | SKU-123 |
curl -H "Authorization: ApiKey YOUR_API_KEY" "https://admin.elpricing.com/api/external-data/priceean/{id}"Tasks are persisted to var/api_queue/tasks.json. Process them with:
php go.php cron:list\nphp go.php cron:go
Logs are written to var/api_queue/logs/{task_id}.log.